home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ETO Development Tools 4
/
ETO Development Tools 4.iso
/
Essentials
/
C++ A'Link Files
/
1989
/
0011-Re[3] Multiple base -Nov89
< prev
next >
Wrap
Text File
|
1991-03-06
|
1KB
|
35 lines
Item forwarded by CPLUS.ADMIN to CP.ARCHIVES
Item 5367085 30-Nov-89 17:04
From: ROSENSTEIN1 Rosenstein, Larry
To: CPLUS.APPLE$ C++ Interest List--Apple Employees
ALCABES Alcabes, Harvey
CPLUS.DEV$ C++ Interest List--Developers
Sub: RE>RE>RE>Multiple base op
Attn: C++ Apple
Attn: France, Dev, MID/Nautil
Attn: C++ Public
SentBy: Larry Rosenstein
Date 11/30/89
Subject RE>RE>RE>Multiple base oper
From Larry Rosenstein
To C++ Apple
France, Dev, MID/Nautil
C++ Public
Reply to: RE>RE>RE>Multiple base operato
Well, you are right. You can inherit an implementation of operator new. (I
guess that applies to all static member functions.)
It look like your particular case will work. If C inherits from A and B, and
A defines operator new, then C will use A's operator new. You can verify this
by looking at the code generated for C's constructor methods.
Larry